home *** CD-ROM | disk | FTP | other *** search
- on getLocs fs, ls
- set locList to []
- repeat with i = fs to ls
- add(locList, the loc of sprite i)
- end repeat
- return locList
- end
-
- on Shuffle startList
- set shuffleList to []
- set copyList to value(string(startList))
- set listSize to count(startList)
- repeat with z = 1 to listSize
- set index to random(count(copyList))
- add(shuffleList, getAt(copyList, index))
- deleteAt(copyList, index)
- end repeat
- return shuffleList
- end
-
- on openReg
- openWindow("reg", "regMovie", rect(100, 100, 324, 240), 4, 1, EMPTY, 0, 0)
- end
-
- on openWindow wName, wFileName, wRect, wType, wVis, wTitle, wModal, wTitleVis
- if objectp(window wName) then
- forget(window wName)
- end if
- set the rect of window wName to wRect
- set the fileName of window wName to wFileName
- set the title of window wName to wTitle
- set the titleVisible of window wName to wTitleVis
- set the windowType of window wName to wType
- set the visible of window wName to wVis
- set the modal of window wName to wModal
- open(window wName)
- end
-
- on setRegPoint fC, lC, rP
- repeat with i = fC to lC
- set the regPoint of cast i to rP
- end repeat
- end
-
- on BatchRegDown fC, lC
- repeat with i = fC to lC
- set thePoint to the regPoint of cast i
- set the regPoint of cast i to thePoint + point(0, 150)
- end repeat
- end
-
- on ReReg spriteNum, fNumSt, fNumEnd
- set cnt to fNumEnd - fNumSt
- go(fNumSt)
- updateStage()
- set fCst to the memberNum of sprite spriteNum
- set iReg to the regPoint of cast fCst
- set iPos to the loc of sprite spriteNum
- repeat with i = 1 to cnt
- go(fNumSt + i)
- updateStage()
- set curCast to the memberNum of sprite spriteNum
- set diff to iPos - the loc of sprite spriteNum
- set the regPoint of cast curCast to the regPoint of cast curCast + diff
- end repeat
- end
-
- on regRidWords startCst, stopCst, offsetV
- repeat with CstNum = startCst to stopCst
- set origPoint to the regPoint of member CstNum of castLib 5
- set newH to the locH of origPoint
- set newV to the locV of origPoint + offsetV
- set the regPoint of member CstNum of castLib 5 to point(newH, newV)
- end repeat
- end
-
- on regRidWordsH startCst, stopCst, offsetH
- repeat with CstNum = startCst to stopCst
- set origPoint to the regPoint of member CstNum of castLib 5
- set newH to the locH of origPoint + offsetH
- set newV to the locV of origPoint
- set the regPoint of member CstNum of castLib 5 to point(newH, newV)
- end repeat
- end
-